The <address> HTML part shows that the added HTML gives contact details for a person or group of people, or for an organization.
The contact information that you can find in an <address> section's details can be any kind of connection data needed for the situation. This might include things like a real-world address, website link, email addy or phone number along with social media name and even location coordinates maybe too. The <address> part should have the name of a person or group that the contact details are for.
<address> can be used in many different situations. For example, you might put a company's phone number at the top of a page or use an <address> thing inside an article to show who wrote it.
The <address> part can only be used to show the detail of its closest person related information from it's nearest article or body.
This bit must not have more details than the contact info, such as a date of release (which should be in a <time> element).
Commonly a <address> can be added inside the <footer> of present section if any is there.
The <address> tag tells who a document or article is for and where the author/owner can be found.
The contact info can be an email, website address or a phone number. It could even be on social media sites for example Facebook and Twitter etc..
The writing in the <address> part often has italic style. Web pages always put a space before and after this section called <address>.
HTML Example
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset ="UTF-8">
<!--This is our webpage it's our very first webpage-->
<title>Levoric | HTML Fundamentle Tutorial</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Write your content here levoriclearn top degree online and program-->
<h1>What is address tag</h1>
<address>
Name: Khogendra Rupini <br>
Name: Khogendra Rupini <br>
State: Tripura <br>
City: Dharmanagar (North) Tripura <br>
Pin: 799254 <br>
Village: Madhuban <br>
</address>
<!--Write your content here levoriclearn top degree online and program-->
</body>
</html>